home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 February
/
Chip_2004-02_cd1.bin
/
zkuste
/
konfig
/
download
/
hicpu
/
setup.exe
/
{app}
/
Reports
/
Arrow.js
< prev
next >
Wrap
Text File
|
2001-08-24
|
966b
|
33 lines
//This is the master JavaScript file for the HTML Help documentation.
function doSection (secNum){
//display the section if it's not displayed; hide it if it is displayed
if (secNum.style.display=="none"){secNum.style.display=""}
else{secNum.style.display="none"}
}
function noSection (secNum){
//remove the section when user clicks in the opened DIV
if (secNum.style.display==""){secNum.style.display="none"}
}
function doExpand(paraNum,arrowNum){
//expand the paragraph and rotate the arrow; collapse and rotate it back
if (paraNum.style.display=="none"){paraNum.style.display="";arrowNum.src="arrowc.gif"}
else{paraNum.style.display="none";arrowNum.src="arrowo.gif"}
}
//These functions control the behavior of the homepage go arrows
function liteGo(spNo){
spNo.style.background="#cc0033";
spNo.style.color="#FFFFFF";
}
function liteOff(spNo){
spNo.style.background="transparent";
spNo.style.color="#000000";
}